home *** CD-ROM | disk | FTP | other *** search
- /*
- Stub routines to convince Symantec C++ for PPC to link with Open Transport libraries.
- See the Q&A for full details.
-
- ©1996 Apple Computer, Inc
- Quinn "The Eskimo!"
- Developer Technical Support
- Networking, Communications and Hardware
- */
-
- #include <Types.h>
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- void SetSelfAsClient(void);
- void LoadClass(void);
- void SetCurrentClient(void);
- void UnloadClass(void);
-
- void SetSelfAsClient(void)
- {
- DebugStr("\pSetSelfAsClient -- This is not good.");
- }
-
- void LoadClass(void)
- {
- DebugStr("\pLoadClass -- This is not good.");
- }
-
- void SetCurrentClient(void)
- {
- DebugStr("\pSetCurrentClient -- This is not good.");
- }
-
- void UnloadClass(void)
- {
- DebugStr("\pUnloadClass -- This is not good.");
- }
-
- #ifdef __cplusplus
- }
- #endif
-